Package pl.wendigo.chrome.api.log

Contains DevTools Protocol Log domain implementation accessible via LogDomain class.

Types

EntryAddedEvent
Link copied to clipboard
data class EntryAddedEvent(entry: LogEntry) : Event
Issued when new message was logged.
LogDomain
Link copied to clipboard
class LogDomain : Domain
Provides access to log entries.
LogEntry
Link copied to clipboard
data class LogEntry(source: String, level: String, text: String, timestamp: Timestamp, url: String?, lineNumber: Int?, stackTrace: StackTrace?, networkRequestId: RequestId?, workerId: String?, args: List<RemoteObject>?)
Log entry.
StartViolationsReportRequest
Link copied to clipboard
data class StartViolationsReportRequest(config: List<ViolationSetting>)
Represents request frame that can be used with Log#startViolationsReport operation call.
ViolationSetting
Link copied to clipboard
data class ViolationSetting(name: String, threshold: Double)
Violation configuration setting.